#servicesPoints {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    margin: 0px 40px;
    gap: 0% 1%;
    height: 850px;
    justify-content: center;
}

#servicesPoints .common .image {
    height: 60%;
    background-size: cover;
    background-repeat: no-repeat;
}

#servicesPoints .common .text {
    margin-top: 3%;
    height: fit-content !important;
}

#servicesPoints .common .text .heading {
    font-size: 1.2rem;
    font-weight: bold;
}

#servicesPoints .common .text .para {
    font-family: var(--t-font1);
    font-size: 0.8rem;
    margin-top: 2px;
    color: var(--txt-color3);
}

#servicesPoints .common .text .btn {
    margin-top: 4px;
}

#servicesPoints .common .text .btn button {
    font-size: 0.9rem;
    font-family: var(--t-font1);
    color: var(--txt-color4);
    font-weight: bold;
}

#servicesPoints .common .text .btn button:hover {
    color: var(--txt-color1);
}

@media (max-width: 1100px) {
    #servicesPoints .common .text .heading {
        font-size: 1rem;
    }
    #servicesPoints .common .text .para {
        font-size: 0.8rem;
    }
    #servicesPoints .common .text .btn button {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    #servicesPoints .common .text .heading {
        font-size: 0.8rem;
    }
    #servicesPoints .common .text .para {
        font-size: 0.6rem;
    }
    #servicesPoints .common .text .btn button {
        font-size: 0.5rem;
    }
    #servicesPoints .common {
        margin-bottom: -50px;
    }
}

@media (max-width: 700px) {
    #servicesPoints {
        grid-template-columns: 48% 48%;
        gap: 4%;
    }
    #servicesPoints .common {
        margin-bottom: 20px;
    }
}

@media (max-width: 380px) {
    #servicesPoints {
        grid-template-columns: 48% 48%;
        gap: 3%;
    }
    #servicesPoints .common:nth-child(3),
    #servicesPoints .common:nth-child(4),
    #servicesPoints .common:nth-child(5),
    #servicesPoints .common:nth-child(6) {
        margin-bottom: 110px;
    }
    #servicesPoints .common:nth-child(1),
    #servicesPoints .common:nth-child(2) {
        margin-bottom: 60px;
    }
}